home *** CD-ROM | disk | FTP | other *** search
/ Micom Basic 1995 October / CD [BM9510].bin / basic / vb_ken / module1.bas < prev    next >
Encoding:
BASIC Source File  |  1995-08-15  |  8.2 KB  |  353 lines

  1. Option Explicit
  2. Type Cell
  3.     ptrCell(4) As Integer
  4.     wall(4) As Integer
  5. End Type
  6.  
  7. Type path
  8.     x As Integer
  9.     y As Integer
  10.     direction As Integer
  11. End Type
  12.  
  13. Global wall%(1024)
  14. Global mazeMap(1024) As Cell
  15. Global mazeWidth%
  16. Global mazeHeight%
  17. Dim mazePath(1024) As path
  18. Dim mazePathMap(64, 64)
  19. Dim pathLen%
  20.  
  21. Dim pathLen2%
  22. Dim mazeSubPath(256) As path
  23. Dim callNum%
  24. Dim dx%(4)
  25. Dim dy%(4)
  26.  
  27. Sub addPath (x%, y%, direction%)
  28.     Dim nx%, ny%
  29.     mazePath(pathLen).x = x
  30.     mazePath(pathLen).y = y
  31.     mazePath(pathLen).direction = direction
  32.  
  33.     mazePathMap(x, y) = -1
  34.  
  35.     mazeMap(x + mazeWidth * y).ptrCell(0) = -1
  36.     mazeMap(x + mazeWidth * y).ptrCell(1) = -1
  37.     mazeMap(x + mazeWidth * y).ptrCell(2) = -1
  38.     mazeMap(x + mazeWidth * y).ptrCell(3) = -1
  39.     nx = dx(direction) + x
  40.     ny = dy(direction) + y
  41.     mazeMap(x + mazeWidth * y).ptrCell(direction) = ny * mazeWidth + nx
  42.  
  43.     pathLen = pathLen + 1
  44. End Sub
  45.  
  46. Sub addSubPath (x%, y%, direction%)
  47.     Dim nx%, ny%
  48.  
  49.     mazeSubPath(pathLen2).x = x
  50.     mazeSubPath(pathLen2).y = y
  51.     mazeSubPath(pathLen2).direction = direction
  52.  
  53.     mazePathMap(x, y) = -1
  54.  
  55.     mazeMap(x + mazeWidth * y).ptrCell(0) = -1
  56.     mazeMap(x + mazeWidth * y).ptrCell(1) = -1
  57.     mazeMap(x + mazeWidth * y).ptrCell(2) = -1
  58.     mazeMap(x + mazeWidth * y).ptrCell(3) = -1
  59.     nx = dx(direction) + x
  60.     ny = dy(direction) + y
  61.     mazeMap(x + mazeWidth * y).ptrCell(direction) = ny * mazeWidth + nx
  62.  
  63.  
  64.     pathLen2 = pathLen2 + 1
  65. End Sub
  66.  
  67. Sub createMaze (w%, h%)
  68.     Dim i%, j%, tmp1%, tmp2%, tmp3%, tmp4%
  69.  
  70.  
  71.     mazeWidth = w
  72.     mazeHeight = h
  73.  
  74.     Do
  75.         callNum = 0
  76.         initMaze
  77.         i = createPath(w - 1, h - 1)
  78.         If i = 1 Then
  79.             Exit Do
  80.         End If
  81.     Loop
  82.  
  83.     createPath2
  84.     createWall
  85.     printMaze
  86. End Sub
  87.  
  88. Function createPath% (x%, y%)
  89.     Dim i%, ret%, nx%, ny%, flag%
  90.     ReDim direction(4) As Integer
  91.  
  92.     callNum = callNum + 1
  93.     If callNum > 1000 Then
  94.         createPath = -1
  95.         Exit Function
  96.     End If
  97.  
  98.     If x = 0 And y = 0 Then
  99.         createPath = 1
  100.         Exit Function
  101.     End If
  102.  
  103.    initDir direction()
  104.  
  105.     For i = 0 To 3
  106.         nx = x + dx(direction(i))
  107.         ny = y + dy(direction(i))
  108.  
  109.         If nx < mazeWidth And ny < mazeHeight And nx >= 0 And ny >= 0 Then
  110.         If mazePathMap(nx, ny) <> -1 Then
  111.             addPath x, y, direction(i)
  112.             ret = createPath(nx, ny)
  113.             If ret = 1 Then
  114.                 createPath = 1
  115.                 Exit Function
  116.             End If
  117.             removePath
  118.         End If
  119.         End If
  120.     Next i
  121.  
  122.     createPath = -1
  123. End Function
  124.  
  125. Sub createPath2 ()
  126.     Dim i%, j%, x%, y%, d%, tmp%, ret%
  127.  
  128.     For i = 0 To pathLen - 1
  129.         x = mazePath(i).x
  130.         y = mazePath(i).y
  131.         d = mazePath(i).direction
  132.         wall(mazeMap(y * mazeWidth + x).wall(0)) = -1
  133.         wall(mazeMap(y * mazeWidth + x).wall(1)) = -1
  134.         wall(mazeMap(y * mazeWidth + x).wall(2)) = -1
  135.         wall(mazeMap(y * mazeWidth + x).wall(3)) = -1
  136.       
  137.         tmp = Int(Rnd * 3)
  138.         If tmp = 0 Then
  139.             pathLen2 = 0
  140.             ret = createSubPath(x, y)
  141.             For j = 0 To pathLen2 - 1
  142.                 x = mazeSubPath(j).x
  143.                 y = mazeSubPath(j).y
  144.                 d = mazeSubPath(j).direction
  145.                 wall(mazeMap(y * mazeWidth + x).wall(0)) = -1
  146.                 wall(mazeMap(y * mazeWidth + x).wall(1)) = -1
  147.                 wall(mazeMap(y * mazeWidth + x).wall(2)) = -1
  148.                 wall(mazeMap(y * mazeWidth + x).wall(3)) = -1
  149.             Next j
  150.             For j = 0 To pathLen2 - 2
  151.                 x = mazeSubPath(j).x
  152.                 y = mazeSubPath(j).y
  153.                 d = mazeSubPath(j).direction
  154.                 wall(mazeMap(y * mazeWidth + x).wall(d)) = 1
  155.             Next j
  156.         End If
  157.     Next i
  158.             
  159. End Sub
  160.  
  161. Function createSubPath% (x%, y%)
  162.     Dim i%, ret%, nx%, ny%
  163.     ReDim direction(4) As Integer
  164.  
  165.     If x = 0 And y = 0 Then
  166.         createSubPath = -1
  167.         Exit Function
  168.     End If
  169.  
  170.    initDir direction()
  171.  
  172.     For i = 0 To 3
  173.         nx = x + dx(direction(i))
  174.         ny = y + dy(direction(i))
  175.  
  176.  
  177.         If nx < mazeWidth And ny < mazeHeight And nx >= 0 And ny >= 0 Then
  178.         If mazePathMap(nx, ny) <> -1 Then
  179.             addSubPath x, y, direction(i)
  180.             ret = createSubPath(nx, ny)
  181.             If ret = 1 Then
  182.                 createSubPath = 1
  183.                 Exit Function
  184.             End If
  185.             removeSubPath
  186.         End If
  187.         End If
  188.     Next i
  189.     
  190.     createSubPath = 1
  191. End Function
  192.  
  193. Sub createWall ()
  194.     Dim i%, x%, y%, d%, tmp%
  195.     ReDim direction%(4)
  196.  
  197.  
  198.     For i = 0 To pathLen - 1
  199.         x = mazePath(i).x
  200.         y = mazePath(i).y
  201.         d = mazePath(i).direction
  202.  
  203.         wall(mazeMap(y * mazeWidth + x).wall(d)) = 0
  204.     Next i
  205. End Sub
  206.  
  207. Sub initDir (direction%())
  208.     Dim tmp%
  209.  
  210.     tmp = Int(4 * Rnd)
  211.     direction(0) = tmp
  212.  
  213.     Do
  214.         tmp = Int(4 * Rnd)
  215.         If tmp <> direction(0) Then
  216.             direction(1) = tmp
  217.             Exit Do
  218.         End If
  219.     Loop
  220.  
  221.     Do
  222.         tmp = Int(4 * Rnd)
  223.         If tmp <> direction(0) And tmp <> direction(1) Then
  224.             direction(2) = tmp
  225.             Exit Do
  226.         End If
  227.     Loop
  228.  
  229.     Do
  230.         tmp = Int(4 * Rnd)
  231.         If tmp <> direction(0) And tmp <> direction(1) And tmp <> direction(2) Then
  232.             direction(3) = tmp
  233.             Exit Do
  234.         End If
  235.     Loop
  236.  
  237. End Sub
  238.  
  239. Sub initMaze ()
  240.     Dim i%, j%, w%, h%
  241.  
  242.     w = mazeWidth
  243.     h = mazeHeight
  244.  
  245.     For i = 0 To h - 1
  246.         For j = 0 To w - 1
  247.             mazeMap(j + w * i).wall(3) = i * (w + 1) + j
  248.             mazeMap(j + w * i).wall(1) = i * (w + 1) + j + 1
  249.         Next j
  250.     Next i
  251.  
  252.     For i = 0 To w - 1
  253.         For j = 0 To h - 1
  254.             mazeMap(j * w + i).wall(0) = i * (h + 1) + j + (w + 1) * h
  255.             mazeMap(j * w + i).wall(2) = i * (h + 1) + j + 1 + (w + 1) * h
  256.         Next j
  257.     Next i
  258.  
  259.     For i = 0 To (w + 1) * h - 1
  260.         wall(i) = 0
  261.     Next i
  262.  
  263.     For i = (w + 1) * h To (h + 1) * w - 1 + (w + 1) * h
  264.         wall(i) = 0
  265.     Next i
  266.         
  267.     For i = 0 To h - 1
  268.         wall(mazeMap(w * i).wall(3)) = -1
  269.         wall(mazeMap(w - 1 + i * w).wall(1)) = -1
  270.     Next i
  271.     For i = 0 To w - 1
  272.         wall(mazeMap(i).wall(0)) = -1
  273.         wall(mazeMap(i + w * (h - 1)).wall(2)) = -1
  274.     Next i
  275.  
  276.     pathLen = 0
  277.     For i = 0 To h - 1
  278.         For j = 0 To w - 1
  279.             mazePathMap(i, j) = 0
  280.         Next j
  281.     Next i
  282.  
  283.     dx(0) = 0
  284.     dx(1) = 1
  285.     dx(2) = 0
  286.     dx(3) = -1
  287.     dy(0) = -1
  288.     dy(1) = 0
  289.     dy(2) = 1
  290.     dy(3) = 0
  291. End Sub
  292.  
  293. Sub printMaze ()
  294.     Dim i%, j%, PX%, PY%, dx%, dy%, w%
  295.  
  296.     w = 59
  297.  
  298.     For i = 0 To mazeHeight - 1
  299.         For j = 0 To mazeWidth - 1
  300.             PX = j * w + 10
  301.             PY = i * w + 10
  302.             If wall(mazeMap(j + i * mazeWidth).wall(3)) = -1 Then
  303.                 form1.Line (PX, PY)-(PX, PY + w)
  304.             End If
  305.             
  306.             If wall(mazeMap(j + i * mazeWidth).wall(1)) = -1 Then
  307.                 form1.Line (PX + w, PY)-(PX + w, PY + w)
  308.             End If
  309.  
  310.             If wall(mazeMap(j + i * mazeWidth).wall(0)) = -1 Then
  311.                 form1.Line (PX, PY)-(PX + w, PY)
  312.             End If
  313.  
  314.             If wall(mazeMap(j + i * mazeWidth).wall(2)) = -1 Then
  315.                 form1.Line (PX, PY + w)-(PX + w, PY + w)
  316.             End If
  317.  
  318.  
  319.         Next j
  320.     Next i
  321.  
  322. End Sub
  323.  
  324. Sub removePath ()
  325.     Dim x%, y%
  326.  
  327.     x = mazePath(pathLen - 1).x
  328.     y = mazePath(pathLen - 1).y
  329.     mazePathMap(x, y) = 0
  330.     mazeMap(x + mazeWidth * y).ptrCell(0) = -1
  331.     mazeMap(x + mazeWidth * y).ptrCell(1) = -1
  332.     mazeMap(x + mazeWidth * y).ptrCell(2) = -1
  333.     mazeMap(x + mazeWidth * y).ptrCell(3) = -1
  334.  
  335.     pathLen = pathLen - 1
  336. End Sub
  337.  
  338. Sub removeSubPath ()
  339.     Dim x%, y%
  340.  
  341.     x = mazeSubPath(pathLen - 1).x
  342.     y = mazeSubPath(pathLen - 1).y
  343.     mazePathMap(x, y) = 0
  344.  
  345.     mazeMap(x + mazeWidth * y).ptrCell(0) = -1
  346.     mazeMap(x + mazeWidth * y).ptrCell(1) = -1
  347.     mazeMap(x + mazeWidth * y).ptrCell(2) = -1
  348.     mazeMap(x + mazeWidth * y).ptrCell(3) = -1
  349.  
  350.     pathLen2 = pathLen2 - 1
  351. End Sub
  352.  
  353.